.lm-support {
    width: 100%;
    padding: 90px 30px;
    background: #f5f3ee;
    box-sizing: border-box;
}

.lm-support-inner {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 560px);
    align-items: center;
    gap: 90px;
}


/* =========================================================
   TEXTO
   ========================================================= */

.lm-support-heading {
    max-width: 470px;
}

.lm-support-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #777;
}

.lm-support-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #202020;
}

.lm-support-heading h2 em {
    font-weight: 400;
}

.lm-support-heading p {
    max-width: 420px;
    margin: 28px 0 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}


/* =========================================================
   CARTÃO
   ========================================================= */

.lm-support-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(30, 30, 30, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
}


/* =========================================================
   QR CODE
   ========================================================= */

.lm-support-qr {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
    padding: 7px;
    background: #fff;
    border: 1px solid #e3e0da;
    box-sizing: border-box;
}

.lm-support-qr img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   INFORMAÇÕES
   ========================================================= */

.lm-support-details {
    min-width: 0;
    flex: 1;
}

.lm-support-card-label {
    display: block;
    margin-bottom: 7px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #888;
}

.lm-support-details h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #222;
}

.lm-support-details p {
    margin: 9px 0 18px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #777;
}


/* =========================================================
   PIX
   ========================================================= */

.lm-support-pix-row {
    display: flex;
    min-width: 0;
    border: 1px solid #ddd9d1;
    background: #faf9f6;
}

.lm-support-pix-key {
    min-width: 0;
    width: 100%;
    height: 40px;
    padding: 0 11px;
    border: 0;
    outline: none;
    background: transparent;
    color: #777;
    font-family: monospace;
    font-size: 9px;
    box-sizing: border-box;
}

.lm-support-copy {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 17px;
    border: 0;
    border-left: 1px solid #ddd9d1;
    background: #222;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lm-support-copy:hover {
    background: #444;
}

.lm-support-feedback {
    display: block;
    min-height: 17px;
    margin-top: 6px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 11px;
    color: #666;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .lm-support {
        padding: 75px 25px;
    }

    .lm-support-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .lm-support-heading {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .lm-support {
        padding: 65px 20px;
    }

    .lm-support-inner {
        gap: 35px;
    }

    .lm-support-heading h2 {
        font-size: 45px;
    }

    .lm-support-heading p {
        font-size: 15px;
    }

    .lm-support-card {
        padding: 22px;
        gap: 22px;
    }

    .lm-support-qr {
        flex-basis: 120px;
        width: 120px;
        height: 120px;
    }

    .lm-support-details h3 {
        font-size: 27px;
    }

    .lm-support-pix-row {
        display: flex;
    }

    .lm-support-pix-key {
        font-size: 8px;
    }

    .lm-support-copy {
        padding: 0 13px;
    }

}


/* =========================================================
   CELULARES MUITO PEQUENOS
   ========================================================= */

@media (max-width: 420px) {

    .lm-support-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .lm-support-qr {
        width: 110px;
        height: 110px;
    }

    .lm-support-details {
        width: 100%;
    }

}